projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ed39e9
)
(make_event_array): Use assignment, not initialization.
author
Karl Heuer
<kwzh@gnu.org>
Wed, 23 Mar 1994 22:25:25 +0000
(22:25 +0000)
committer
Karl Heuer
<kwzh@gnu.org>
Wed, 23 Mar 1994 22:25:25 +0000
(22:25 +0000)
src/alloc.c
patch
|
blob
|
history
diff --git
a/src/alloc.c
b/src/alloc.c
index b9299a060c2bf82a7dfc015917b8138989e92149..d343774e8fd063b68c29996fe42727bb2c1bca7f 100644
(file)
--- a/
src/alloc.c
+++ b/
src/alloc.c
@@
-982,8
+982,9
@@
make_event_array (nargs, args)
/* Since the loop exited, we know that all the things in it are
characters, so we can make a string. */
{
- Lisp_Object result
= Fmake_string (nargs, make_number (0))
;
+ Lisp_Object result;
+ result = Fmake_string (nargs, make_number (0));
for (i = 0; i < nargs; i++)
{
XSTRING (result)->data[i] = XINT (args[i]);